home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CMCD0205.ISO / Software / Freeware / Programare / bluej / bluejsetup-203.exe / {app} / lib / spanish / templates / newclass / interface.tmpl < prev    next >
Text File  |  2004-12-19  |  380b  |  19 lines

  1. $PKGLINE
  2. /**
  3.  * Write a description of interface $CLASSNAME here.
  4.  * 
  5.  * @author (your name) 
  6.  * @version (a version number or a date)
  7.  */
  8.  
  9. public interface $CLASSNAME
  10. {
  11.     /**
  12.      * An example of a method header - replace this comment with your own
  13.      * 
  14.      * @param  y    a sample parameter for a method
  15.      * @return        the result produced by sampleMethod 
  16.      */
  17.     int sampleMethod(int y);
  18. }
  19.